home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 22 / AMUG_22-1.ISO / Files / Internet / Web Things / HTML 201.sit / HTML 201 / HTML 201.rsrc / TEXT_131.txt < prev    next >
Encoding:
Text File  |  1996-03-13  |  1.2 KB  |  48 lines

  1.  
  2. Drill 2
  3.  
  4. Now for an unordered list
  5.  
  6. Add something similar to your document after your definition list.
  7.  
  8. <HTML>
  9. <HEAD>
  10. <TITLE>
  11. George's page of lists
  12. </TITLE>
  13. </HEAD>
  14. <BODY>
  15. <H1>George's page of lists</H1>
  16. <P>
  17. <HR>
  18. <P> 
  19. This is my page of lists. It contains lists of things I like. But first let's define what a list is:
  20. <P>
  21. <DL>
  22. <DT>List                                                       Definition list
  23. <DD>A series of words.                
  24. </DL>
  25. <P>
  26. Here is a list of things I like to do:
  27. <P>
  28. <UL> --------> opening unordered list tag
  29. <LI>reading --------> list item tag
  30. <LI>skiing                                                       This is new!
  31. <LI>hiking
  32. <LI>running
  33. </UL> -------->  closing unordered list tag
  34. </BODY>
  35. </HTML>
  36.  
  37. Save this document (*REMEMBER* this  document needs to be saved as .html at the immediate end of the name you gave the document) in your word processing program and then open it using your browser.
  38.  
  39. You can compare what your document looks like with the example document I have included (lists.html).
  40.  
  41. If you do not see something similar:
  42.  
  43. 1.check your typing
  44. 2.make sure the document is saved as an HTML document
  45. 3.reload the document into the browser
  46.  
  47. Now we move on to drill 3.
  48.